Socket
Socket
Sign inDemoInstall

meilisearch

Package Overview
Dependencies
Maintainers
4
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

meilisearch

The Meilisearch JS client for Node.js and the browser.


Version published
Weekly downloads
103K
increased by3.15%
Maintainers
4
Weekly downloads
Β 
Created
Source

Meilisearch-JavaScript

Meilisearch JavaScript

Meilisearch | Documentation | Slack | Roadmap | Website | FAQ

npm version Tests Prettier License Bors enabled

⚑ The Meilisearch API client written for JavaScript

Meilisearch JavaScript is the Meilisearch API client for JavaScript developers.

Meilisearch is an open-source search engine. Discover what Meilisearch is!

Table of Contents

πŸ“– Documentation

See our Documentation or our API References.

πŸ”§ Installation

We only guarantee that the package works with node >= 12 and node <= 16.

With npm:

npm install meilisearch

With yarn:

yarn add meilisearch

πŸƒβ€β™€οΈ Run Meilisearch

There are many easy ways to download and run a Meilisearch instance.

For example, using the curl command in your Terminal:

# Install Meilisearch
curl -L https://install.meilisearch.com | sh

# Launch Meilisearch
./meilisearch --master-key=masterKey

NB: you can also download Meilisearch from Homebrew or APT or even run it using Docker.

Import

Depending on the environment in which you are using Meilisearch, imports may differ.

Import Syntax

Usage in an ES module environment:

import { MeiliSearch } from 'meilisearch'

const client = new MeiliSearch({
  host: 'http://127.0.0.1:7700',
  apiKey: 'masterKey',
})
Include Script Tag

Usage in an HTML (or alike) file:

<script src='https://cdn.jsdelivr.net/npm/meilisearch@latest/dist/bundles/meilisearch.umd.js'></script>
<script>
  const client = new MeiliSearch({
    host: 'http://127.0.0.1:7700',
    apiKey: 'masterKey',
  })
</script>
Require Syntax

Usage in a back-end node environment

const { MeiliSearch } = require('meilisearch')

const client = new MeiliSearch({
  host: 'http://127.0.0.1:7700',
  apiKey: 'masterKey',
})
React Native

To make this package work with React Native, please add the react-native-url-polyfill.

Deno

Usage in a back-end deno environment

import { MeiliSearch } from "https://esm.sh/meilisearch"

const client = new MeiliSearch({
  host: 'http://127.0.0.1:7700',
  apiKey: 'masterKey',
})

🎬 Getting Started

Add Documents
const { MeiliSearch } = require('meilisearch')
// Or if you are in a ES environment
import { MeiliSearch } from 'meilisearch'

;(async () => {
  const client = new MeiliSearch({
    host: 'http://127.0.0.1:7700',
    apiKey: 'masterKey',
  })

  // An index is where the documents are stored.
  const index = client.index('movies')

  const documents = [
      { id: 1, title: 'Carol', genres: ['Romance', 'Drama'] },
      { id: 2, title: 'Wonder Woman', genres: ['Action', 'Adventure'] },
      { id: 3, title: 'Life of Pi', genres: ['Adventure', 'Drama'] },
      { id: 4, title: 'Mad Max: Fury Road', genres: ['Adventure', 'Science Fiction'] },
      { id: 5, title: 'Moana', genres: ['Fantasy', 'Action']},
      { id: 6, title: 'Philadelphia', genres: ['Drama'] },
  ]

  // If the index 'movies' does not exist, Meilisearch creates it when you first add the documents.
  let response = await index.addDocuments(documents)

  console.log(response) // => { "uid": 0 }
})()

With the uid, you can check the status (enqueued, processing, succeeded or failed) of your documents addition using the task.

Basic Search
// Meilisearch is typo-tolerant:
const search = await index.search('philoudelphia')
console.log(search)

Output:

{
  "hits": [
    {
      "id": "6",
      "title": "Philadelphia",
      "genres": ["Drama"]
    }
  ],
  "offset": 0,
  "limit": 20,
  "estimatedTotalHits": 1,
  "processingTimeMs": 1,
  "query": "philoudelphia"
}
Custom Search

All the supported options are described in the search parameters section of the documentation.

await index.search(
  'wonder',
  {
    attributesToHighlight: ['*']
  }
)
{
  "hits": [
    {
      "id": 2,
      "title": "Wonder Woman",
      "genres": ["Action", "Adventure"],
      "_formatted": {
        "id": 2,
        "title": "<em>Wonder</em> Woman",
        "genres": ["Action", "Adventure"]
      }
    }
  ],
  "offset": 0,
  "limit": 20,
  "estimatedTotalHits": 1,
  "processingTimeMs": 0,
  "query": "wonder"
}
Custom Search With Filters

If you want to enable filtering, you must add your attributes to the filterableAttributes index setting.

await index.updateAttributesForFaceting([
    'id',
    'genres'
  ])

You only need to perform this operation once.

Note that Meilisearch will rebuild your index whenever you update filterableAttributes. Depending on the size of your dataset, this might take time. You can track the process using the tasks).

Then, you can perform the search:

await index.search(
  'wonder',
  {
    filter: ['id > 1 AND genres = Action']
  }
)
{
  "hits": [
    {
      "id": 2,
      "title": "Wonder Woman",
      "genres": ["Action","Adventure"]
    }
  ],
  "offset": 0,
  "limit": 20,
  "estimatedTotalHits": 1,
  "processingTimeMs": 0,
  "query": "wonder"
}
Placeholder Search

Placeholder search makes it possible to receive hits based on your parameters without having any query (q). To enable faceted search on your dataset you need to add genres in the settings.

await index.search(
  '',
  {
    filter: ['genres = fantasy'],
    facets: ['genres']
  }
)
{
  "hits": [
    {
      "id": 2,
      "title": "Wonder Woman",
      "genres": ["Action","Adventure"]
    },
    {
      "id": 5,
      "title": "Moana",
      "genres": ["Fantasy","Action"]
    }
  ],
  "offset": 0,
  "limit": 20,
  "estimatedTotalHits": 2,
  "processingTimeMs": 0,
  "query": "",
  "facetDistribution": {
    "genres": {
      "Action": 2,
      "Fantasy": 1,
      "Adventure": 1
    }
  }
}
Abortable Search

You can abort a pending search request by providing an AbortSignal to the request.

const controller = new AbortController()

index
  .search('wonder', {}, {
    signal: controller.signal,
  })
  .then((response) => {
    /** ... */
  })
  .catch((e) => {
    /** Catch AbortError here. */
  })

controller.abort()

πŸ€– Compatibility with Meilisearch

This package only guarantees the compatibility with the version v0.28.0 of Meilisearch.

πŸ’‘ Learn More

The following sections may interest you:

This repository also contains more examples.

βš™οΈ Development Workflow and Contributing

Any new contribution is more than welcome to this project!

If you want to know more about the development workflow or want to contribute, please visit our contributing guidelines for detailed instructions!

πŸ“œ API Resources

Search

client.index<T>('xxx').search(query: string, options: SearchParams = {}, config?: Partial<Request>): Promise<SearchResponse<T>>

client.index<T>('xxx').searchGet(query: string, options: SearchParams = {}, config?: Partial<Request>): Promise<SearchResponse<T>>

Documents

index.addDocuments(documents: Document<T>[]): Promise<EnqueuedTask>

index.addDocumentsInBatches(documents: Document<T>[], batchSize = 1000): Promise<EnqueuedTask[]>

index.updateDocuments(documents: Array<Document<Partial<T>>>): Promise<EnqueuedTask>

index.updateDocumentsInBatches(documents: Array<Document<Partial<T>>>, batchSize = 1000): Promise<EnqueuedTask[]>

index.getDocuments(parameters: DocumentsQuery = {}): Promise<DocumentsResults<T>>>

index.getDocument(documentId: string): Promise<Document<T>>

index.deleteDocument(documentId: string | number): Promise<EnqueuedTask>

index.deleteDocuments(documentsIds: string[] | number[]): Promise<EnqueuedTask>

index.deleteAllDocuments(): Promise<Types.EnqueuedTask>

Tasks

  • Get all tasks

    client.getTasks(parameters: TasksQuery): Promise<TasksResults>

  • Get one task

    client.getTask(uid: number): Promise<Task>

  • Get all tasks of an index

    index.getTasks(parameters: TasksQuery): Promise<TasksResults>

  • Get one task of an index

    index.getTask(uid: number): Promise<Task>

  • Wait for one task:

    client.waitForTask(uid: number, { timeOutMs?: number, intervalMs?: number }): Promise<Task>

    With an index instance: index.waitForTask(uid: number, { timeOutMs?: number, intervalMs?: number }): Promise<Task>

  • Wait for multiple tasks: client.waitForTasks(uids: number[], { timeOutMs?: number, intervalMs?: number }): Promise<Task[]>

    With an index instance: index.waitForTasks(uids: number[], { timeOutMs?: number, intervalMs?: number }): Promise<Task[]>

Indexes

client.getIndexes(parameters: IndexesQuery): Promise<IndexesResults<Index[]>>

client.getRawIndexes(parameters: IndexesQuery): Promise<IndexesResults<IndexObject[]>>

client.createIndex<T>(uid: string, options?: IndexOptions): Promise<EnqueuedTask>

  • Create a local reference to an index:

client.index<T>(uid: string): Index<T>

Using the client client.updateIndex(uid: string, options: IndexOptions): Promise<EnqueuedTask>

Using the index object: index.update(data: IndexOptions): Promise<EnqueuedTask>

Using the client client.deleteIndex(uid): Promise<void>

Using the index object: index.delete(): Promise<void>

index.getStats(): Promise<IndexStats>

  • Return Index instance with updated information:

index.fetchInfo(): Promise<Index>

  • Get Primary Key of an Index:

index.fetchPrimaryKey(): Promise<string | undefined>

Settings

index.getSettings(): Promise<Settings>

index.updateSettings(settings: Settings): Promise<EnqueuedTask>

index.resetSettings(): Promise<EnqueuedTask>

Synonyms

index.getSynonyms(): Promise<object>

index.updateSynonyms(synonyms: Synonyms): Promise<EnqueuedTask>

index.resetSynonyms(): Promise<EnqueuedTask>

Stop-words

Ranking rules

Distinct Attribute

Searchable Attributes

Displayed Attributes

Filterable Attributes

Sortable Attributes

Typo Tolerance

Keys

client.getKeys(parameters: KeysQuery): Promise<KeysResults>

client.getKey(keyOrUid: string): Promise<Key>

client.createKey(options: KeyCreation): Promise<Key>

client.updateKey(keyOrUid: string, options: KeyUpdate): Promise<Key>

client.deleteKey(keyOrUid: string): Promise<void>

isHealthy

client.isHealthy(): Promise<boolean>

Health

client.health(): Promise<Health>

Stats

client.getStats(): Promise<Stats>

Version

client.getVersion(): Promise<Version>

Dumps

client.createDump(): Promise<EnqueuedTask>


Meilisearch provides and maintains many SDKs and Integration tools like this one. We want to provide everyone with an amazing search experience for any kind of project. If you want to contribute, make suggestions, or just know what's going on right now, visit us in the integration-guides repository.

Keywords

FAQs

Package last updated on 11 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚑️ by Socket Inc